home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
JCSM Shareware Collection 1993 November
/
JCSM Shareware Collection - 1993-11.iso
/
cl400
/
basd121j.lzh
/
BDINSTAL.BAT
< prev
next >
Wrap
DOS Batch File
|
1992-10-01
|
789b
|
29 lines
echo off
if "%1" == "" goto usage
%1
cd\
mkdir bduel
copy a:BD.BAT %1
cd %1\bduel
copy a:*.* %1
cls
echo -- Installation is complete. A directory called BDUEL has been
echo -- created on the disk drive you specified. To run BassDuel in the
echo -- future, simply type type BD then press ENTER key from any directory.
echo --
echo -- To run BassDuel now, type BASSDUEL then press the ENTER key.
goto end
:usage
echo -- You must specify a disk drive where BassDuel is to be installed:
echo --
echo -- EXAMPLES: a:bdinstal c:
echo -- -OR-
echo -- a:bdinstal d:
echo --
echo -- Notice the c: and the d: at the end of the command. These specify
echo -- where you want to install BassDuel.
goto end
:end
%1